home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr11 / class.zip / BROWSE.DOC < prev    next >
Text File  |  1993-06-01  |  5KB  |  92 lines

  1.  
  2.                                                                        
  3.                      From The PC Magazine Utilities                   
  4.                                                                         
  5.                                     Volume I                            
  6.                                                                         
  7.                   Copyright (C) 1986 Ziff-Davis Publishing Co.          
  8.  
  9.  
  10.           Browse                                 Charles Petzold
  11.           Command                                          No. 3
  12.  
  13.           _______________________________________________________
  14.  
  15.           Purpose   Permits scrolling forward and backward
  16.                     throughout a file without use of a word
  17.                     processing program.
  18.  
  19.           Format:   BROWSE [d:][path]filename[.ext] [/W]
  20.  
  21.           Remarks:  The DOS TYPE command does not permit you to
  22.                     scroll ahead or go back to previously
  23.                     displayed material in a file.  It also exits
  24.                     at the first instance of Ctrl-Z (ASCII 26,
  25.                     conventionally used as an End-of-File
  26.                     marker), making it impossible to scan binary
  27.                     (e.g. .COM) files for error messages,
  28.                     copyright notices, and the like.
  29.  
  30.                     BROWSE.COM overcomes these shortcomings,
  31.                     giving you the chance to go immediately to
  32.                     the top or to the end of a file (the Home and
  33.                     End keys, respectively), to the succeeding or
  34.                     previous screen (PgUp and PgDn), or to move
  35.                     up or down a line at a time (Up Arrow or Down
  36.                     Arrow).  To return to DOS, simply press the
  37.                     Escape key or Ctrl-Break.
  38.  
  39.                     Wide displays, e.g. a spreadsheet file, are
  40.                     not broken at 80 columns, as with TYPE.
  41.                     BROWSE ignores carriage returns (ASCII 13),
  42.                     breaking lines only on line feeds (ASCII 10).
  43.                     The Right Arrow key scrolls the display to
  44.                     the right in eight-character increments (see
  45.                     Note 3 below) to view wide displays; the Left
  46.                     Arrow key returns you immediately to column
  47.                     zero.
  48.  
  49.                     BROWSE expands tab characters (ASCII 9) to
  50.                     the next eight-character boundary, but does
  51.                     no other character processing unless the /W
  52.                     parameter is specified.  Use of the /W option
  53.                     permits using BROWSE with WordStar files.
  54.  
  55.                     Notes:
  56.  
  57.                     1.   BROWSE can run under TopView or Windows;
  58.                          specify "writes directly to screen" in
  59.                          the .PIF and use the default 52K memory
  60.                          requirement.  (The program actually
  61.                          requires only approximately 33K to run.)
  62.                          For the TopView PIF, specify that the
  63.                          program intercepts Interrupt 23h.
  64.  
  65.                     2.   BROWSE is compatible with the IBM
  66.                          monochrome, CGA, and EGA displays, and
  67.                          will even run in the EGA 43-line mode.
  68.                          Files prepared with word-processors that
  69.                          employ a one-line-per-paragraph format
  70.                          (such as Microsoft Word and XyWrite) may
  71.                          to require excessive right scrolling,
  72.                          however.
  73.  
  74.                     3.   BROWSE.COM can be patched with DEBUG so
  75.                          that its right-scroll jumps by more than
  76.                          the default eight characters.  The
  77.                          address to patch is 10F in the .COM
  78.                          file.  After entering DEBUG BROWSE.COM
  79.                          type
  80.  
  81.                               E 10F
  82.  
  83.                          and the default value (08h) will appear.
  84.                          Type the desired hexadecimal number (28
  85.                          for a 40-column increment; 50 for an 80-
  86.                          column increment) and press <Enter>.
  87.                          Then type W<Enter> to write to the disk
  88.                          and Q<Enter> to quit DEBUG.
  89.  
  90.                     4.   Requires DOS 2.0 or later.
  91.  
  92.